home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 October: Mac OS SDK / Dev.CD Oct 97 SDK1.toast / Development Kits (Disc 1) / Interfaces&Libraries / Universal / Interfaces / CIncludes / Windows.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-08-12  |  1.1 KB  |  43 lines  |  [TEXT/MPS ]

  1. /*
  2.      File:        Windows.h
  3.  
  4.      Contains:    Window Manager Interfaces.
  5.  
  6.      Version:    Technology:    System 7.5
  7.                  Release:    Universal Interfaces 3.0.1
  8.  
  9.      Copyright:    © 1984-1997 by Apple Computer, Inc., all rights reserved
  10.  
  11.      Bugs?:        Please include the the file and version information (from above) with
  12.                  the problem description.  Developers belonging to one of the Apple
  13.                  developer programs can submit bug reports to:
  14.  
  15.                      devsupport@apple.com
  16.  
  17. */
  18. /*
  19.     NOTE
  20.     
  21.     The file Windows.h has been renamed to "MacWindows.h" to prevent a collision
  22.     with the Microsoft Windows(tm) header file "Windows.h".  MacOS only developers may 
  23.     continue to use #include <Windows.h>.  Developers doing cross-platform work where 
  24.     Windows.h also exists should change their sources to use #include <MacWindows.h>
  25. */
  26.  
  27. #ifndef __CONDITIONALMACROS__
  28. #include <ConditionalMacros.h>
  29. #endif
  30.  
  31. #if TARGET_OS_MAC
  32. #ifndef __MACWINDOWS__
  33. #include <MacWindows.h>
  34. #endif
  35. #else
  36. /*
  37.     If you get here, your development environment is messed up.
  38.     This file is for MacOS development only.
  39. */
  40. #error This file (Windows.h) is for developing MacOS software only!
  41. #endif  /* TARGET_OS_MAC */
  42.  
  43.